1bd19e33c029f0bedfbde55ca11d5b820f47e1e1,AerisDemo/src/com/example/listview/ForecastItemHolder.java,ForecastItemHolder,populateView,#ForecastPeriod#number#,40

Before Change


		}

		weatherDesc.setText(t.weather);
		tempHigh.setText(t.maxTempF.toString());
		tempLow.setText(t.minTempF.toString());

	}

After Change


		}

		weatherDesc.setText(t.weatherPrimary);
		if (t.maxTempF != null) {
			tempHigh.setText(t.maxTempF.toString());
		} else {
			tempHigh.setText("--");
		}
		if (t.minTempF != null) {
			tempLow.setText(t.minTempF.toString());